home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 November / Chip_1999-11_cd.bin / zkuste / MacOS / DATA / FILES / DROPDRAW.HQX / Install Drop Drawers 1.0.rsrc / TEXT_500_Default ReadMe.txt < prev    next >
Text File  |  1999-08-30  |  7KB  |  117 lines

  1. Sig Software presentsΓǪ
  2. Drop Drawers version 1.0
  3.  
  4. Introduction
  5.  
  6. Drop Drawers is a revolutionary user-interface enhancement which provides floating pull-out, snap-shut drawers on the sides of your screen to store text, URLs, aliases, pictures, sounds, movies and anything else.
  7.  
  8. Examples of things you can store in a drawer :
  9.  
  10. ΓÇó Aliases to frequently-used files, applications and folders.
  11. ΓÇó URLs for web sites you often visit.
  12. ΓÇó Snippets of text information you could otherwise forget.
  13. ΓÇó A catalogue of thumbnails for image files.
  14. ΓÇó Email addresses for individuals you often contact.
  15. ΓÇó Multimedia formats including pictures, movies and sounds.
  16. ΓÇó Styled text phrases for easy dropping into your documents.
  17. ΓÇó Absolutely anything you can copy via the clipboard or drag and drop.
  18.  
  19. Information in a drawer can also be worked with. For example, styled text can be edited, applications and folders can be dragged onto, URLs can be opened and sounds and movies can be played.
  20.  
  21. Drop Drawers works seamlessly with any Mac OS application supporting drag and drop. It is not just another floating application launcher, although it fulfils all those functions too.
  22.  
  23. Requirements
  24.  
  25. ΓÇó Mac OS System 7 or later.
  26. ΓÇó Mac OS System 7.5.3 or later for full drag-and-drop support.
  27.  
  28. Memory Usage
  29.  
  30. Drop Drawers' default memory allocation is 1Mb but it can be set as low as 256k or as high as you like. This memory is used for drawer data ΓÇô less memory means more disk access. Drawer offscreen graphics are stored separately in system memory which will be reclaimed by the system when needed. In modern systems, memory shown for Drop Drawers in the About This Computer window will be the total of these two allocations. 
  31.  
  32. Acknowledgements
  33.  
  34. The following code has been at least partially integrated into Drop Drawers:
  35.  
  36. ΓÇó Sig Software's home-grown MADE application framework ΓÇô http://www.sigsoftware.com/made/
  37. ΓÇó Matt Slot's appeWindows floating windows framework ΓÇô http://www.sils.umich.edu/~fprefect/
  38. ΓÇó James Walker's Find Icon tool ΓÇô http://users.aol.com/jwwalker/
  39. ΓÇó Marco Piovanelli's WASTE text editing framework ΓÇô http://www.boingo.com/waste/
  40. ΓÇó Jim Stout's Slider CDEF ΓÇô [no URL supplied in documentation]
  41.  
  42. The installer for Drop Drawers was created using Installer VISE from MindVision Software.
  43. For more information on Installer VISE, contact:
  44.  
  45. MindVision Software
  46. 7201 North 7th Street
  47. Lincoln, NE 68521-8913
  48. Voice: 402-477-3269
  49. Fax: 402-477-1395
  50. Internet: mindvision@mindvision.com
  51. http://www.mindvision.com
  52.  
  53. Finally, greatest thanks of all to our public beta testers ΓÇô hundreds of helpful reports were received.
  54.  
  55. ┬⌐ Sig Software ΓÇö http://www.sigsoftware.com/
  56. Any distribution of the Drop Drawers application must include this file. No responsibility about Drop Drawers' functionality or integrity is implied. This document and the Drop Drawers application are copyright of the author.
  57.  
  58. Version 1.0 ΓÇô 30th August 1999
  59. ΓÇó Added command-arrow pixel nudging.
  60. ΓÇó Added alias or file spec retargeting.
  61. ΓÇó Several minor fixes from Public Beta 3.
  62.  
  63. Public Beta 3 ΓÇö 24th August 1999
  64. ΓÇó Auto-detection of URLs and email addresses.
  65. ΓÇó Improved arranging with arrange last command, even spreading and always arrange options.
  66. ΓÇó Finder Icons cached within drawers for faster redrawing.
  67. ΓÇó Added option to single-click launch aliases and URLs.
  68. ΓÇó Added drawer-specific item display options.
  69. ΓÇó Over 80 other minor fixes and improvements.
  70.  
  71. Public Beta 2 ΓÇö 16th August 1999
  72. ΓÇó Ability to drag files onto applications or folders in drawers.
  73. ΓÇó More color options and tab styles for drawers.
  74. ΓÇó Added support for QuickTime image thumbnail previews.
  75. ΓÇó Easy drawer moving and renaming.
  76. ΓÇó Added built-in styled text editor.
  77. ΓÇó Many more arranging options.
  78. ΓÇó Added Undo for all actions.
  79. ΓÇó Any items including files can be given names.
  80. ΓÇó 100s of other minor fixes and improvements.
  81.  
  82. Public Beta 1 ΓÇö 26th July 1999
  83. ΓÇó Initial release.
  84.  
  85. About TSM Fix
  86.  
  87. This text is part of the TSM Fix package ΓÇô the TSM Fix extension will have been installed in your Extensions folder.
  88.  
  89. Short Form:
  90. This INIT fixes the jGNEFilter "Missing Clicks" bug, by head *and* tail patching GetNextEvent.
  91.  
  92. Long Form:
  93. The operating system give low-level programmers a mechanism (called the jGNEFilter) for intercepting user events (mouse clicks, key downs, etc) and "filtering" or modifying them before the computer processes them. Many system extens:ons use this hook to implement special functionality in your computer -- such as SuperClock and ObiWan -- and work transparently to the user.
  94.  
  95. Since System 7.0, the operating system became much more complex. Now the system has to manage multiple applications at once and feed the right events to the right programs. Occasionally, one of these events does not get sent through the filter as it should -- and the programs checking events never have a chance to handle them properly. Typically, this is seen when programs implement special windows or window parts -- clicks that are destined for interception are passed straight through to the next window.
  96.  
  97. This system extension remedies the problem by checking events as they are presented to the running programs. If an event has not passed through the installed filters, this extension sends it to be filtered before returning.
  98.  
  99. The name "TSM Fix" comes from the fact that programs using the "Text Services Manager" (TSM) floating windows typically use the jGNEFilter to find clicks -- and the extension fixes the system bug.
  100.  
  101. Installing:
  102. Simply drop the extension onto the System Folder (it will be placed in the extensions folder). There will be no visible feedback, but on restart you should never experience that "Missing Clicks" thing.
  103.  
  104. Distribution:
  105. I wrote this to fix a bug that was plaguing users of certain programs I had written. I hope that it becomes widely used, so it is free to use and distribute. Also, if you have written software that suffers from such "Missing Clicks", you can freely add this extension and readme to your distribution. (Drop me a line if you do so... so I can send you an update as necessary).
  106.  
  107. Changes in 1.01:
  108.  * Fixed incompatibility with After Dark 3.0. (They set the jGNEFilter to zero -- hmmm, isn't that a bad thing?) Thanks to Eric Hon-Anderson.
  109.  
  110. Changes in 1.02:
  111.  * Fixed incompatibility with certain extensions and debuggers that create processes before the Finder launches and sets up the Process Manager.
  112.  
  113. Changes in 1.03:
  114.  * Fixed another incompatibility with Optimem RAM Charger and Jasik's Debugger. This should take care of all your problems!
  115.  * Started flushing the cache when necessary.
  116.  
  117. Matt Slot, fprefect@umich.edu - 7/25/95